home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\SOURCE\COUNT.L < prev    next >
Text File  |  1994-12-28  |  202b  |  17 lines

  1. %{
  2.   int n = 0;
  3. %}
  4. %%
  5. "#define"(\40|\t)+[A-Z0-9_]+(\40|\t)+"$\n" {
  6.   yytext[yyleng - 2] = '\0';
  7.   printf ("%s%d\n", yytext, n);
  8.   n++;
  9. }
  10. .*"\n" printf("%s", yytext);
  11. %%
  12. main()
  13. {
  14.   yylex();
  15.   exit(0);
  16. }
  17.